home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscCircularSlider / Makefile.preamble < prev    next >
Encoding:
Makefile  |  1995-06-12  |  3.8 KB  |  97 lines

  1. #    MiscCircularSlider Preamble
  2. #    this is 3.1+ specific, and will enable the building of FAT palletes!
  3.  
  4. LIBOFILES = MiscCircularSlider.subproj/MiscCircularSlider.o \
  5.         MiscCircularSlider.subproj/MiscCSCell.o \
  6.         MiscCircularSlider.subproj/MiscCSWraps.o
  7.  
  8. ###############################################################################
  9. #  NeXT Makefile.preamble Template
  10. #  Copyright 1993, NeXT Computer, Inc.
  11. #
  12. #  This Makefile is used for configuring the standard app makefiles associated
  13. #  with ProjectBuilder.  
  14. #  
  15. #  Use this template to set attributes for a project, sub-project, bundle, or
  16. #  palette.  Each node in the project's tree of sub-projects and bundles 
  17. #  should have it's own Makefile.preamble and Makefile.postamble.
  18. #
  19. ###############################################################################
  20. ## Configure the flags passed to $(CC) here.  These flags will also be 
  21. ## inherited by all nested sub-projects and bundles.  Put your -I, -D, -U, and
  22. ## -L flags here.  To change the default flags that get passed to ${CC} 
  23. ## (e.g. change -O to -O2), see Makefile.postamble.
  24.  
  25. # Flags passed to compiler (in addition to -g, -O, etc)
  26. OTHER_CFLAGS = -IMiscCircularSlider.subproj
  27. # Flags passed to ld (in addition to -ObjC, etc.)
  28. OTHER_LDFLAGS =    
  29.  
  30. ## Configure what is linked in at each level here.  Libraries are only used in
  31. ## the final 'app' linking step.  Final 'app' linking is only done via the
  32. ## 'app', 'debug', and 'profile' targets when they are invoked for
  33. ## the top-level app.
  34.  
  35. # Additional relocatables to be linked in at this level
  36. OTHER_OFILES = 
  37. # Additional libs to link apps against ('app' target)
  38. OTHER_LIBS = 
  39. # Additional libs to link apps against ('debug' target)
  40. OTHER_DEBUG_LIBS = 
  41. # Additional libs to link apps against ('profile' target)
  42. OTHER_PROF_LIBS = 
  43.  
  44. # More 'app' libraries when $(JAPANESE) = "YES"
  45. OTHER_JAPANESE_LIBS = 
  46. # More 'debug' libraries when $(JAPANESE) = "YES"
  47. OTHER_JAPANESE_DEBUG_LIBS = 
  48. # More 'profile' libs when $(JAPANESE) = "YES"
  49. OTHER_JAPANESE_PROF_LIBS = 
  50.  
  51. ## Configure how things get built here.  Additional dependencies, sourcefiles, 
  52. ## derived files, and build order should be specified here.
  53.  
  54. # Other dependencies of this project
  55. OTHER_PRODUCT_DEPENDS = libMiscCircularSlider.a
  56. # Built *before* building subprojects/bundles
  57. OTHER_INITIAL_TARGETS = 
  58. # Other source files maintained by .pre/postamble
  59. OTHER_SOURCEFILES = 
  60. # Additional files to be removed by `make clean' 
  61. OTHER_GARBAGE = libMiscCircularSlider.a
  62. # Precompiled headers to be built before any compilation occurs (e.g., draw.p)
  63. PRECOMPS = 
  64.  
  65. # Targets to be built before subprojects & bundles
  66. OTHER_INITIAL_TARGETS =    
  67.  
  68. # A virtual root directory (other than /) to be prepended to the $(INSTALLDIR) 
  69. # passed from ProjectBuilder.
  70. DSTROOT = 
  71. INSTALLDIR = /LocalDeveloper/Palettes
  72.  
  73.  
  74. ## Add more obscure source files here to cause them to be automatically 
  75. ## processed by the appropriate tool.  Note that these files should also be
  76. ## added to "Supporting Files" in ProjectBuilder.  The desired .o files that 
  77. ## result from these files should also be added to OTHER_OFILES above so they
  78. ## will be linked in.
  79.  
  80. # .msg files that should have msgwrap run on them
  81. MSGFILES = 
  82. # .defs files that should have mig run on them
  83. DEFSFILES = 
  84. # .mig files (no .defs files) that should have mig run on them
  85. MIGFILES = 
  86.  
  87. ## Add additional Help directories here (add them to the project as "Other 
  88. ## Resources" in Project Builder) so that they will be compressed into .store
  89. ## files and copied into the app wrapper.  If the help directories themselves
  90. ## need to also be in the app wrapper, then a cp command will need to be added
  91. ## in an after_install target.
  92. OTHER_HELP_DIRS = 
  93.  
  94. # Don't add more rules here unless you want the first one to be the default
  95. # target for make!  Put all your targets in Makefile.postamble.
  96.  
  97.